home *** CD-ROM | disk | FTP | other *** search
/ Belgian Amiga Club - ADF Collection / BS1 part 34.zip / BS1 part 34 / Aztec C 5.0a disk 1.adf / include / resources / filesysres.h < prev    next >
C/C++ Source or Header  |  1988-07-15  |  637b  |  34 lines

  1. #ifndef    RESOURCES_FILESYSRES_H
  2. #define    RESOURCES_FILESYSRES_H
  3. #ifndef    EXEC_NODES_H
  4. #include    "exec/nodes.h"
  5. #endif
  6. #ifndef    EXEC_LISTS_H
  7. #include    "exec/lists.h"
  8. #endif
  9. #ifndef    LIBRARIES_DOS_H
  10. #include    "libraries/dos.h"
  11. #endif
  12. #define    FSRNAME    "FileSystem.resource"
  13. struct    FileSysResource    {
  14. struct    Node    fsr_Node;
  15. char    *fsr_Creator;
  16. struct    List    fsr_FileSysEntries;
  17. };
  18. struct    FileSysEntry    {
  19. struct    Node    fse_Node;
  20. ULONG    fse_DosType;
  21. ULONG    fse_Version;
  22. ULONG    fse_PatchFlags;
  23. ULONG    fse_Type;
  24. CPTR    fse_Task;
  25. BPTR    fse_Lock;
  26. BSTR    fse_Handler;
  27. ULONG    fse_StackSize;
  28. LONG    fse_Priority;
  29. BPTR    fse_Startup;
  30. BPTR    fse_SegList;
  31. BPTR    fse_GlobalVec;
  32. };
  33. #endif
  34.